From: Bastian Germann Date: Sat, 8 Aug 2026 11:23:07 +0000 (+0200) Subject: Exclude cxxopts X-Git-Tag: archive/raspbian/1%20251009+git20260808_dfsg-2+rpi1^2~6 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=cb944c9af1d987369ab9d88794822a813287e30d;p=fontforge.git Exclude cxxopts Gbp-Pq: Name 0001-Exclude-cxxopts.patch --- diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index b22816e..142c866 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -6,6 +6,3 @@ target_include_directories(mINI INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/mINI) # Enable case-sensitive mode for GKeyFile compatibility target_compile_definitions(mINI INTERFACE MINI_CASE_SENSITIVE) -# cxxopts - header-only command line argument parser -add_library(cxxopts INTERFACE) -target_include_directories(cxxopts INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/cxxopts) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 808cde6..a010967 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -11,7 +11,6 @@ endif() # systestdriver - standalone C++ test driver (no FontForge dependencies) add_executable(systestdriver systestdriver.cpp) -target_link_libraries(systestdriver PRIVATE cxxopts) set_target_properties(systestdriver PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED ON) if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") target_compile_options(systestdriver PRIVATE -Wall -pedantic)